home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / mac / DirectX SDK / DXSDK / samples / Multimedia / VBSamples / Media / SLOMO.XTL < prev    next >
Text File  |  2001-10-08  |  2KB  |  46 lines

  1. <!-- In this example, you will see a 400x300 24 bit movie.  The first clip  -->
  2. <!-- will be in slow motion, and use the "crop" mode of stretching, and the -->
  3. <!-- second clip will be sped up, and use the "PreserveAspectRatio" mode of -->
  4. <!-- stretching.  There will be a fade transition between the two.          -->
  5. <!-- Also, the audio will crossfade using the volume effect, and since      -->
  6. <!-- the second clip is much louder than the first, the second clip's audio -->
  7. <!-- volume will be cut.                                                    -->
  8.  
  9. <!-- NOTE: If you install the DirectX SDK to a path other than c:\dxsdk,  -->
  10. <!-- then you must change the media path for each clip src below.         -->
  11.  
  12.  
  13. <timeline>
  14.   <group type="video" framerate="15" width="400" height="300" bitdepth="24">
  15.     <track>
  16.     <clip src="c:\dxsdk\samples\multimedia\media\butterfly.mpg" start="0" stop="6" mstart="0" mstop="3" stretchmode="crop" />
  17.     </track>
  18.     <track>
  19.     <clip src="c:\dxsdk\samples\multimedia\media\clocktxt.avi"  start="6" stop="9" mstart="0" mstop="9" stretchmode="PreserveAspectRatio"/>
  20.     <transition clsid="{16b280c5-ee70-11d1-9066-00c04fd9189d}"  start="5" stop="7" />
  21.     </track>
  22.   </group>
  23.  
  24.   <group type="audio">
  25.     <track>
  26.     <clip src="c:\dxsdk\samples\multimedia\media\piano2.mp3"    start="0" stop="6" mstart="4" mstop="8"/>
  27.       <effect clsid="{036A9790-C153-11d2-9EF7-006008039E37}"    start="0" stop="6">
  28.       <param name="vol" value="1">
  29.         <linear time="6" value=".5"/>
  30.       </param>
  31.       </effect>
  32.     </track>
  33.  
  34.     <track>
  35.     <clip src="c:\dxsdk\samples\multimedia\media\clocktxt.avi"  start="6" stop="9" mstart="0" mstop="9"/>
  36.       <effect clsid="{036A9790-C153-11d2-9EF7-006008039E37}"    start="6" stop="9">
  37.       <param name="vol" value=".2">
  38.       </param>
  39.       </effect>
  40.     </track>
  41.   </group>
  42.  
  43. </timeline>
  44.  
  45.  
  46.